home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gold Medal Software 3
/
Gold Medal Software - Volume 3 (Gold Medal) (1994).iso
/
os2
/
ssaver2x.arj
/
BCCDLL0.ASM
next >
Wrap
Assembly Source File
|
1993-12-08
|
360b
|
22 lines
.386
_TEXT segment dword use32 public 'CODE' ;size is 20
_TEXT ends
_DATA segment dword use32 public 'DATA' ;size is 0
__os2hmod dd 0
_DATA ends
FLAT group
public __os2hmod
extrn _DLL_InitTerm
; public _text
_TEXT segment
MODEL OS2 FLAT
.startup
_textstart:
mov eax, 4[esp]
mov [__os2hmod], eax
mov eax, 1
ret
_TEXT ends
end